home *** CD-ROM | disk | FTP | other *** search
/ IRIX Installation Tools & Overlays 2001 November / SGI IRIX Installation Tools & Overlays 2001 November - Disc 3.iso / dist / cluster_services.idb / var / cluster / cmgr-templates / cmgr-create-cluster.z / cmgr-create-cluster
Text File  |  2001-10-10  |  2KB  |  63 lines

  1. #
  2. # The following cluster_mgr script allows users to define a cluster in the
  3. # CDB. This script has to run as "/usr/cluster/bin/cluster_mgr -f".
  4. # Replace all the values that are within "<<" and ">>" with values appropriate
  5. # for the cluster and run the script.
  6. #
  7.  
  8. #
  9. # Name of the cluster.  
  10. #
  11. define cluster <<name of the cluster>>
  12. #
  13. #
  14. # Creating a cluster for failsafe use. Set is_failsafe variable to true if 
  15. # cluster is configured for failsafe use
  16. # Default value: false
  17.     set is_failsafe to <<true|false>>
  18. # Creating a cluster for CXFS use. Set is_cxfs variable to true if 
  19. # cluster is configured for CXFS use
  20. # Default value: false
  21.     set is_cxfs to <<true|false>>
  22. #
  23. # Cluster ID.  Specify a CXFS cluster ID.  If there are more than one
  24. # CXFS cluster on the network, they each need a unique CXFS cluster ID.
  25. # A cluster ID is an integer between 1 and 265.
  26. # The cluster ID is mandatory only for CXFS clusters.
  27. #    set clusterid to <<unique cluster id>>
  28. # Notification command for the cluster. This is optional. If this field is
  29. # not specified,  /usr/bin/mail command is used for notification. Notification
  30. # is sent when there is change in status of cluster, node and resource group.
  31. #
  32. #    set notify_cmd to <<command path>>
  33. # Notification address for the cluster. This field value is passed as
  34. # argument to the notification command. This field is optional. If notification
  35. # address is not provided, notification command should not require an
  36. # notification address argument.  If both notification address and
  37. # notification command are not specified, notification are sent for this
  38. # cluster.
  39. # Example value: failsafe_alias@sysadm.company.com
  40. #    set notify_addr to <<notification address>>
  41. #
  42. # List of nodes added to the cluster.
  43. # Repeat the following line for each node to be added to the cluster.
  44. # Node should be already defined in the CDB and logical name of the
  45. # node has to be specified.
  46.     add node <<logical name of the node>>
  47. #
  48. # Add more nodes to the cluster here.
  49. #
  50.  
  51. #
  52. # Cluster definition complete
  53. #
  54. done
  55.  
  56. #
  57. # Script complete. This should be last line of the script
  58. #
  59. quit
  60.